.container>.fl,
.container>.fr{
	margin-top: 30px;
}
.swiper-container{
    margin-bottom: 20px !important;
}
.swiper-slide>a{
    display: block;
    position: relative;
}
.swiper-slide>a>img{
    display: block;
    width: 100%;
}
.swiper-slide>a>h2{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 48px;
    background-color: rgba(0,0,0,.6);
    box-sizing: border-box;
    padding: 0 30px;
}
.swiper-slide>a>h2 p{
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    padding-right: 20px;
    flex: 1;
}
.swiper-slide>a>h2 span{
    display: block;
    font-size: 14px;
    line-height: 1;
    color: #fff;
}
.swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next{
    top: 50%;
    display: flex;
    margin-top: -35px;
    width: 40px;
    height: 70px;
    background-color: rgba(0,0,0,.6);
    cursor: pointer;
    background-image: url('/static/home/img/banner-lr.png');
    background-size: auto;
    transition: all .3s;
    opacity: 0;
}
.swiper-container .swiper-button-prev{
    left: -40px;
    transform: rotate(180deg);
}
.swiper-container .swiper-button-next{
    right: -40px;
}
.swiper-container:hover .swiper-button-prev{
    opacity: 1;
    left: 0;
}
.swiper-container:hover .swiper-button-next{
    opacity: 1;
    right: 0;
}